home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 43
/
Vol 43.iso
/
games
/
superdog.swf
/
scripts
/
DefineSprite_1637
/
frame_1
/
DoAction.as
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2007-06-25
|
297 b
|
21 lines
var now = 100;
var justnow = now;
var target;
onEnterFrame = function()
{
target = _parent.boss.hp * 5;
if(target != now)
{
bar._xscale -= 1;
now -= 1;
}
else
{
justnow = now;
}
if(bar._xscale <= 0)
{
bar._xscale = 0;
}
};